blob: 0e3a498c78f1e87b003e6d8ec354a447fa113625 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import { LoginForm } from "@/components/login/login-form"
import { Suspense } from "react"
export default function LoginPage() {
return (
<Suspense fallback={<div>Loading login form...</div>}>
<LoginForm />
</Suspense>
// <div className="flex min-h-svh flex-col items-center justify-center bg-muted p-6 md:p-10">
// <div className="w-full max-w-sm md:max-w-3xl">
// </div>
// </div>
)
}
|